home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / ada / gnat-3.05- / gnat-3 / gnat-3.05-i486-linux-elf-bin / rts / 2gproinf.adb < prev    next >
Encoding:
Text File  |  1996-06-07  |  7.6 KB  |  202 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                 S Y S T E M . P R O G R A M  _  I N F O                  --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.2 $                              --
  10. --                                                                          --
  11. --               Copyright (C) 1996 Free Software Foundation, Inc.          --
  12. --                                                                          --
  13. -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  14. -- terms of the  GNU General Public License as published  by the Free Soft- --
  15. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  16. -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  17. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  18. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  19. -- for  more details.  You should have  received  a copy of the GNU General --
  20. -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
  21. -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
  22. -- MA 02111-1307, USA.                                                      --
  23. --                                                                          --
  24. -- As a special exception,  if other files  instantiate  generics from this --
  25. -- unit, or you link  this unit with other files  to produce an executable, --
  26. -- this  unit  does not  by itself cause  the resulting  executable  to  be --
  27. -- covered  by the  GNU  General  Public  License.  This exception does not --
  28. -- however invalidate  any other reasons why  the executable file  might be --
  29. -- covered by the  GNU Public License.                                      --
  30. --                                                                          --
  31. -- GNAT was originally developed  by the GNAT team at  New York University. --
  32. -- It is now maintained by Ada Core Technologies Inc (http://www.gnat.com). --
  33. --                                                                          --
  34. ------------------------------------------------------------------------------
  35. --  This package   contains the parameters  used by   the run-time system at
  36. --  program startup.  These parameters are  isolated in this package body to
  37. --  facilitate replacement by the end user.
  38. --
  39. --  To repalce the default values, copy this source file into your build
  40. --  directory, edit the file to reflect your desired behavior, and recompile
  41. --  with the command:
  42. --
  43. --     % gcc -c -O2 -gnatg s-proinf.adb
  44. --
  45. --  then relink your application as usual.
  46. --
  47.  
  48. with Interfaces.C.Strings;
  49. package body System.Program_Info is
  50.  
  51.    Kbytes : constant := 1024;
  52.  
  53.    Default_Initial_Sproc_Count  : constant := 0;
  54.    Default_Max_Sproc_Count      : constant := 128;
  55.    Default_Sproc_Stack_Size     : constant := 16#4000#;
  56.    Default_Stack_Guard_Pages    : constant := 1;
  57.    Default_Default_Time_Slice   : constant := 0.0;
  58.    Default_Default_Task_Stack   : constant := 12 * Kbytes;
  59.    Default_Pthread_Sched_Signal : constant := 33;
  60.    Default_Pthread_Arena_Size   : constant := 16#40000#;
  61.    Default_Os_Default_Priority  : constant := 0;
  62.  
  63.    use Interfaces.C.Strings;
  64.  
  65.    function Getenv (Name : String) return String;
  66.  
  67.    function Getenv (Name : String) return String is
  68.  
  69.       function C_Getenv (P1 : chars_ptr) return chars_ptr;
  70.       pragma Import (C, C_Getenv, "getenv", "getenv");
  71.  
  72.       Result : chars_ptr;
  73.       C_P1 : chars_ptr := New_String (Name);
  74.  
  75.    begin
  76.       Result := C_Getenv (C_P1);
  77.       Free (C_P1);
  78.       if Result = Null_Ptr then
  79.          return "";
  80.       else
  81.          return Value (Result);
  82.       end if;
  83.    end Getenv;
  84.  
  85.    function Initial_Sproc_Count return Integer is
  86.  
  87.       function sysmp (P1 : Integer) return Integer;
  88.       pragma Import (C, sysmp, "sysmp", "sysmp");
  89.  
  90.       MP_NPROCS      : constant := 1; --   # processor in complex
  91.  
  92.       PTHREAD_SPROC_COUNT_STR : constant String
  93.         := Getenv ("PTHREAD_SPROC_COUNT");
  94.    begin
  95.       if PTHREAD_SPROC_COUNT_STR = "" then
  96.          return Default_Initial_Sproc_Count;
  97.       elsif PTHREAD_SPROC_COUNT_STR'Length >= 4 and then
  98.          PTHREAD_SPROC_COUNT_STR (1 .. 4) = "AUTO" then
  99.          return sysmp (MP_NPROCS);
  100.       else
  101.          return Integer'Value (PTHREAD_SPROC_COUNT_STR);
  102.       end if;
  103.    exception
  104.       when others => return 0;
  105.    end Initial_Sproc_Count;
  106.  
  107.  
  108.    function Max_Sproc_Count     return Integer is
  109.       PTHREAD_MAX_SPROC_COUNT_STR : constant String
  110.         := Getenv ("PTHREAD_MAX_SPROC_COUNT");
  111.    begin
  112.       if PTHREAD_MAX_SPROC_COUNT_STR = "" then
  113.          return Default_Max_Sproc_Count;
  114.       else
  115.          return Integer'Value (PTHREAD_MAX_SPROC_COUNT_STR);
  116.       end if;
  117.    exception
  118.       when others =>
  119.          return Integer'Value (PTHREAD_MAX_SPROC_COUNT_STR);
  120.    end Max_Sproc_Count;
  121.  
  122.  
  123.    function Sproc_Stack_Size return Integer is
  124.    begin
  125.       return Default_Sproc_Stack_Size;
  126.    end Sproc_Stack_Size;
  127.  
  128.    function Default_Time_Slice  return Duration is
  129.       PTHREAD_TIME_SLICE_USEC_STR : constant String
  130.         := Getenv ("PTHREAD_TIME_SLICE_USEC");
  131.       PTHREAD_TIME_SLICE_SEC_STR : constant String
  132.         := Getenv ("PTHREAD_TIME_SLICE_SEC");
  133.       Time_Slice : Duration := 0.0;
  134.    begin
  135.       if PTHREAD_TIME_SLICE_USEC_STR /= "" or
  136.         PTHREAD_TIME_SLICE_SEC_STR /= "" then
  137.  
  138.          if PTHREAD_TIME_SLICE_SEC_STR /= "" then
  139.             Time_Slice := Time_Slice +
  140.               Duration (Integer'Value (PTHREAD_TIME_SLICE_SEC_STR));
  141.          end if;
  142.  
  143.          if PTHREAD_TIME_SLICE_USEC_STR /= "" then
  144.             Time_Slice := Time_Slice +
  145.               Duration (Integer'Value (PTHREAD_TIME_SLICE_SEC_STR)) / 1000.0;
  146.          end if;
  147.  
  148.          return Time_Slice;
  149.       else
  150.          return Default_Default_Time_Slice;
  151.       end if;
  152.    exception
  153.       when others =>
  154.          return Default_Default_Time_Slice;
  155.    end Default_Time_Slice;
  156.  
  157.    function Default_Task_Stack  return Integer is
  158.    begin
  159.       return Default_Default_Task_Stack;
  160.    end Default_Task_Stack;
  161.  
  162.    function Stack_Guard_Pages   return Integer is
  163.       PTHREAD_STACK_GUARD_PAGES_STR : constant String
  164.         := Getenv ("PTHREAD_STACK_GUARD_PAGES");
  165.    begin
  166.       if PTHREAD_STACK_GUARD_PAGES_STR /= "" then
  167.          return Integer'Value (PTHREAD_STACK_GUARD_PAGES_STR);
  168.       else
  169.          return Default_Stack_Guard_Pages;
  170.       end if;
  171.    exception
  172.       when others =>
  173.          return Default_Stack_Guard_Pages;
  174.    end Stack_Guard_Pages;
  175.  
  176.    function Pthread_Sched_Signal return Integer is
  177.    begin
  178.       return Default_Pthread_Sched_Signal;
  179.    end Pthread_Sched_Signal;
  180.  
  181.    function Pthread_Arena_Size  return Integer is
  182.       PTHREAD_ARENA_SIZE_STR : constant String
  183.         := Getenv ("PTHREAD_ARENA_SIZE");
  184.    begin
  185.       if PTHREAD_ARENA_SIZE_STR = "" then
  186.          return Default_Pthread_Arena_Size;
  187.       else
  188.          return Integer'Value (PTHREAD_ARENA_SIZE_STR);
  189.       end if;
  190.    exception
  191.       when others =>
  192.          return Default_Pthread_Arena_Size;
  193.    end Pthread_Arena_Size;
  194.  
  195.    function Os_Default_Priority return Integer is
  196.    begin
  197.       return Default_Os_Default_Priority;
  198.    end Os_Default_Priority;
  199.  
  200.  
  201. end System.Program_Info;
  202.